29 lines
639 B
YAML
29 lines
639 B
YAML
# Development configuration for local testing
|
|
services:
|
|
template:
|
|
build:
|
|
context: ./docker/template
|
|
dockerfile: Dockerfile
|
|
image: template:dev
|
|
volumes:
|
|
- ./docker/template/src:/scratch
|
|
- ./temp:/temp
|
|
networks:
|
|
- dev_network
|
|
|
|
# Add any additional services you need here
|
|
# Example:
|
|
# db:
|
|
# image: postgres:14
|
|
# environment:
|
|
# - POSTGRES_PASSWORD=postgres
|
|
# - POSTGRES_USER=postgres
|
|
# - POSTGRES_DB=template
|
|
# volumes:
|
|
# - ./temp/postgres-data:/var/lib/postgresql/data
|
|
# networks:
|
|
# - dev_network
|
|
|
|
networks:
|
|
dev_network:
|
|
driver: bridge |