You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
393 B
YAML
21 lines
393 B
YAML
---
|
|
version: '1.0'
|
|
services:
|
|
dashboard:
|
|
container_name: next_dashboard
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports: [3000:3000]
|
|
networks: [next_dashboard]
|
|
db:
|
|
image: postgres
|
|
restart: always
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: password
|
|
networks: [next_dashboard]
|
|
networks:
|
|
next_dashboard:
|
|
driver: bridge
|