docker-projects/alpine/compose.yml
Dominik 02ff5b23e7 added proxy network
updated services in readme
updated homepage
2024-07-30 15:53:31 +02:00

21 lines
583 B
YAML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# https://hub.docker.com/_/alpine
# Alpine Linux is a Linux distribution built around musl libc and BusyBox.
# The image is only 5 MB in size and has access to a package repository that is much more complete than other BusyBox based images.
# This makes Alpine Linux a great image base for utilities and even production applications.
name: alpine
services:
alpine:
stdin_open: true
tty: true
container_name: alpine
image: alpine
command: ash
networks:
- proxy
networks:
proxy:
external: true