19 lines
300 B
YAML
19 lines
300 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
paste:
|
|
image: danielszabo99/microbin
|
|
restart: unless-stopped
|
|
container_name: microbin
|
|
ports:
|
|
- "80:8080"
|
|
volumes:
|
|
- ./data:/app/pasta_data
|
|
networks:
|
|
nginx:
|
|
aliases:
|
|
- microbin
|
|
|
|
networks:
|
|
nginx:
|
|
external: true |