Installation of Ionic Framework on Synology

Currently reading
Installation of Ionic Framework on Synology

12
1
NAS
DS918+ & DS415play
Operating system
  1. Linux
  2. macOS
  3. Windows
Mobile operating system
  1. Android
Has anyone had any success installing the Ionic Framework onto their Synology?

I've reached an impasse trying to install this version of the ionic framework.

Any assistance appreciated.
 
What problems are you having?
I've just used a quick docker-compose and it came up without an issue.
But I have no app to test, nor did I test server or connect an USB device.
Without a bit more information there's not much anyone can do to help I'm afraid.
 
Thanks for getting back to me.

I was having a nightmare time trying to docker deploy Ionic on to my Synology; it kept requesting to launch the java app directory first which I could not locate. Finally had to deploy the docker Ionic onto our Windows desktop instead. Which was really plain sailing, if you have a guide to installing or your docker-compose, it would be good to have a look at where I was going wrong.
 
Install the synology docker package.
SSH onto your NAS.
Run the following line:
Code:
sudo curl -L "https://github.com/docker/compose/releases/download/1.28.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
(Shamelessly stolen from @one-eyed-king in the From Synology to Docker thread)
In my case...
cd /volume2/docker
mkdir compose
mkdir ionic


Code:
version: '3.3'
services:
    ionic-framework:
        container_name: ionic
        image: 'agileek/ionic-framework:1.4.5'
        ports:
            - '8100:8100'
            - '35729:35729'
        volumes:
            - '/volume2/docker/ionic/:/myApp:rw'
        restart: always
        networks:
            - synology

networks:
    synology:
        external: true
Of note, I use a network called synology if you don't you'll need to specify your network or that you're using the host network.
Save that as ionic.yml in /volume2/docker/compose

Then back in your SSH session:
cd compose
(your path should look similar to /volume2/docker/compose)
docker-compose -f ionic.yml up -d

It'll pull down the files if necessary and spin up the container.
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Similar threads

  • Question
Open an issue on that GitHub page. The developers will be glad to assist. OP has posted two threads on...
Replies
5
Views
1,072
Aha... I think I got it. I enabled websockets but then didn't change my domain name from nasIP:port to...
Replies
21
Views
2,797
  • Question
Hi. I'm back with a new issue. After stopping the container does not start showing following in Log...
Replies
17
Views
3,608
I run the official docker image myself. These are the variables that I use in combination with PostgresDB...
Replies
2
Views
3,624
Hi All, I have been struggling since December to get a docker install of FreePBX or Asterisk to work on...
Replies
0
Views
3,663

Welcome to SynoForum.com!

SynoForum.com is an unofficial Synology forum for NAS owners and enthusiasts.

Registration is free, easy and fast!

Back
Top