mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-06-27 16:57:05 +00:00
21 lines
583 B
YAML
21 lines
583 B
YAML
# 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
|