12 lines
265 B
YAML
12 lines
265 B
YAML
services:
|
|
haskell-playground:
|
|
image: saundersp/haskell-playground
|
|
pull_policy: never
|
|
build:
|
|
args:
|
|
UID: ${UID:-1000}
|
|
GID: ${GID:-1000}
|
|
user: ${UID:-1000}:${GID:-1000}
|
|
volumes:
|
|
- ./:/home/saundersp/haskell_playground
|