networks: 1panel-network: external: true services: openssh-server: image: "linuxserver/openssh-server:latest" container_name: ${CONTAINER_NAME} restart: always networks: - 1panel-network ports: - "${PANEL_APP_PORT_SSH}:2222" volumes: - "${CONFIG_PATH}:/config" environment: - PUID=1000 - PGID=1000 - TZ=${TIME_ZONE} - USER_NAME=${USER_NAME} - PUBLIC_KEY=${PUBLIC_KEY} - PUBLIC_KEY_URL=${PUBLIC_KEY_URL} - PASSWORD_ACCESS=${PASSWORD_ACCESS} - SUDO_ACCESS=${SUDO_ACCESS} - USER_PASSWORD=${USER_PASSWORD} - LOG_STDOUT=${LOG_STDOUT} labels: createdBy: "Apps"