cryptgeon/docker-compose.dev.yaml

20 lines
291 B
YAML
Raw Normal View History

2021-05-02 12:02:40 +00:00
# DEV Compose file.
2021-05-02 12:54:57 +00:00
# For a production file see: README.md
2021-05-02 12:02:40 +00:00
version: '3.8'
2021-05-02 01:07:08 +00:00
services:
redis:
image: redis:7-alpine
2021-05-02 01:07:08 +00:00
ports:
- 6379:6379
2021-05-02 11:53:48 +00:00
app:
2022-11-14 15:16:50 +00:00
image: cupcakearmy/cryptgeon:test
2022-11-14 14:47:12 +00:00
build: .
2022-11-14 14:55:49 +00:00
env_file: .dev.env
2021-05-04 17:30:25 +00:00
depends_on:
- redis
2021-05-02 11:53:48 +00:00
ports:
- 1234:5000