Composefile draft
This commit is contained in:
parent
6b98dac375
commit
e7f7b2a75a
1 changed files with 24 additions and 0 deletions
24
container/docker-compose.yml
Normal file
24
container/docker-compose.yml
Normal file
|
@ -0,0 +1,24 @@
|
|||
version: "3.8"
|
||||
|
||||
services:
|
||||
frostbyte:
|
||||
build: .
|
||||
container_name: fb-server
|
||||
networks:
|
||||
- fb_network
|
||||
depends_on:
|
||||
- postgres
|
||||
|
||||
postgres:
|
||||
image: docker.io/postgres:16.1-alpine
|
||||
container_name: fb-database
|
||||
environment:
|
||||
POSTGRES_DB: CHANGEME
|
||||
POSTGRES_USER: CHANGEME
|
||||
POSTGRES_PASSWORD: CHANGEME
|
||||
networks:
|
||||
- fb_network
|
||||
|
||||
networks:
|
||||
fb_network:
|
||||
driver: bridge
|
Loading…
Reference in a new issue