mirror of
https://github.com/amigan/rustypaste-pretty.git
synced 2024-11-22 04:19:47 -05:00
16 lines
292 B
YAML
16 lines
292 B
YAML
|
version: "3.6"
|
||
|
services:
|
||
|
server:
|
||
|
image: orhunp/rustypaste:${IMAGE_TAG:-latest}
|
||
|
build: .
|
||
|
container_name: rustypaste
|
||
|
restart: always
|
||
|
environment:
|
||
|
- RUST_LOG=debug
|
||
|
env_file:
|
||
|
- ./.env
|
||
|
ports:
|
||
|
- "8000:8000"
|
||
|
volumes:
|
||
|
- ./upload/:/app/upload
|