2024-12-18 22:48:27 +00:00
|
|
|
version: '3.8'
|
|
|
|
|
2024-12-18 22:35:21 +00:00
|
|
|
services:
|
|
|
|
plaster:
|
2024-12-19 00:26:18 +00:00
|
|
|
image: ghcr.io/gigirassy/plaster
|
2024-12-18 22:35:21 +00:00
|
|
|
ports:
|
2024-12-18 22:50:04 +00:00
|
|
|
- "35200:3000" # change host port if needed
|
2024-12-20 00:44:56 +00:00
|
|
|
environment:
|
|
|
|
AUTO_COPY_DEFAULT: "false" # if enabled, this will automatically copy paste contents to the clipboard on main page
|
2024-12-20 15:25:22 +00:00
|
|
|
SHOW_ASCII_ART: "true" # if disabled, ascii art on front page won't show up
|
2024-12-20 15:27:10 +00:00
|
|
|
volumes:
|
|
|
|
# - ./ascii:/app/ascii # allows for custom ascii art via folder mounting
|
2024-12-18 22:35:21 +00:00
|
|
|
restart: always
|
2024-12-18 22:48:27 +00:00
|
|
|
container_name: plaster
|