Skip to content

Instantly share code, notes, and snippets.

@fernandodebrando
Last active April 3, 2020 11:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fernandodebrando/8946b331cbff60643957c0fbb643cd30 to your computer and use it in GitHub Desktop.
Save fernandodebrando/8946b331cbff60643957c0fbb643cd30 to your computer and use it in GitHub Desktop.
version: '3'
services:
skf-angular:
restart: always
image: blabla1337/skf-angular:1.4
ports:
- "8788:8788"
environment:
- FRONTEND_URI=http://skf.domain.net:8888
skf-api:
restart: always
image: blabla1337/skf-api:1.3
ports:
- "8888:8888"
environment:
- JWT_SECRET=change_this_super_secret_random_string
- SKF_FLASK_DEBUG=False
- SKF_DB_URL=sqlite:///db/db.sqlite
- SKF_TESTING=False
- SKF_API_URL=http://skf.domain.net:8888/api
- ORIGIN=skf.domain.net:8788
volumes:
- db_data:/skf-flask/skf/db
volumes:
db_data: {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment