Skip to content

Instantly share code, notes, and snippets.

@Lyokolux
Created October 10, 2022 08:39
Show Gist options
  • Save Lyokolux/b732872b3757ee5ddc656a7d46b2286e to your computer and use it in GitHub Desktop.
Save Lyokolux/b732872b3757ee5ddc656a7d46b2286e to your computer and use it in GitHub Desktop.
Docker Compose for the deployment of the Masterarbeit application
version: "3.9"
volumes:
db:
services:
app:
image: ${APP_IMAGE_TAG}
container_name: app
ports:
- ${APP_PORT}:3000
volumes:
- db:/app/data
# nocodb:
# image: nocodb/nocodb:latest
# ports:
# - 3001:8080
# volumes:
# - db:/usr/app/data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment