Skip to content

Instantly share code, notes, and snippets.

@OliverVea
Created November 15, 2022 03:46
Show Gist options
  • Select an option

  • Save OliverVea/3016b2db6e01bdaa57c46409784c7eab to your computer and use it in GitHub Desktop.

Select an option

Save OliverVea/3016b2db6e01bdaa57c46409784c7eab to your computer and use it in GitHub Desktop.
Veachron Docker Compose file
services:
api:
image: olivervea/veachron-api:latest
environment:
DB_HOST: db
DB_USER: user
DB_PASSWORD: password
LOG_LEVEL: WARNING
ui:
image: olivervea/veachron-ui:latest
db:
image: postgres
restart: always
environment:
POSTGRES_USER: user
POSTGRES_PASSWORD: password
POSTGRES_DB: veachron
volumes:
- postgresql:/var/lib/postgresql/data
nginx:
image: nginx:1.21
platform: linux
ports:
- 80:80
restart: on-failure
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
volumes:
postgresql:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment