1
0
ohmyform/docker-compose.yml
Michael Schramm 5414f3b371 - switched to supervisord based combined container
- heroku deployments
2021-05-02 15:53:01 +02:00

40 lines
821 B
YAML

# WARNING!! This is to build from source
# to use a version that is prebuilt copy one of the entries from the examples folder!
version: "3"
services:
redis:
image: redis
ohmyform:
build: .
environment:
CREATE_ADMIN: "TRUE"
MAILER_URI: smtp://mail:1025
DATABASE_DRIVER: postgres
DATABASE_URL: postgresql://root:root@db:5432/ohmyform
LOGIN_NOTE: "login with root:root!"
SECRET_KEY: 12345
links:
- db
- redis
- mail
ports:
- "5200:3000"
depends_on:
- db
- redis
mail:
image: mailhog/mailhog
ports:
- "5051:8025"
db:
image: postgres:10-alpine
volumes:
- ./pg_data:/var/lib/postgresql/data
environment:
POSTGRES_USER: root
POSTGRES_PASSWORD: root
POSTGRES_DB: ohmyform